
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    display: grid;
    letter-spacing: 1px;
    font-family:  monospace;
    scroll-behavior: smooth;
    background-color: white;
}
.container{
    display: grid;
    width: 90%;
    padding: 50px;
}
h1{
    margin-top: 15px;
    margin-left: 20px;
}
ol{
    margin-left: 30px;
}
ol li{
    font-weight: bolder;
    margin-top: 10px;
    margin-bottom: 5px;
}
.point{
    display: inline-block;
    margin-top: 20px;
    width: 90%;
    margin-left: 20px;
    margin-bottom: 20px;
}
ol li .titlebox{
    background-color: whitesmoke;
    color: #000000;
    padding: 2px;
    overflow: auto;
}
a{
    list-style: none;
    text-decoration: none;
    color: #182BFF;
}
.music{
	width: 80%;
	margin: 50px auto;
	background-color: transparent;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	text-align: center;
}
h1 {
	font-size: 36px;
	margin-top: 0;
	margin-bottom: 20px;
	color: #333;
	text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
}
#timeline {
	width: 100%;
	height: 10px;
	background-color: #000000;
	position: relative;
	margin-bottom: 20px;
	border-radius: 5px;
}
#playhead {
	width: 20px;
	height: 20px;
	background-color: #5C5E77;
	position: absolute;
	top: -5px;
	left: 0;
	cursor: pointer;
	border-radius: 50%;
}
.controls {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}
.controls button {
	background-color: #0318FE;
	width: 90px;
	height: 90px;
	color: #FFFFFF;
	font-size: 24px;
	border: none;
	border-radius: 50%;
	padding: 10px;
	margin-right: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
}
.controls button:hover {
	transform: scale(1.1);
}
.controls button:focus {
	outline: none;
}
.controls button.play {
	background-color: #5cb85c;
}
.controls button.pause {
	background-color: #d9534f;
}
.time {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
	color: #333;
	font-size: 20px;
	text-shadow: 1px 1px 0 rgba(255, 255, 255, 0);
}